object Form1: TForm1 Left = 208 Top = 133 Width = 258 Height = 153 Caption = 'Example 1' Font.Charset = DEFAULT_CHARSET Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] Position = poScreenCenter OnCreate = FormCreate OnDestroy = FormDestroy PixelsPerInch = 96 TextHeight = 13 object Label1: TLabel Left = 8 Top = 52 Width = 24 Height = 13 Caption = 'Text:' end object btnLoad: TButton Left = 172 Top = 4 Width = 75 Height = 25 Caption = '&Load library' TabOrder = 0 OnClick = btnLoadClick end object btnUnload: TButton Left = 172 Top = 32 Width = 75 Height = 25 Caption = '&Unload library' TabOrder = 1 OnClick = btnUnloadClick end object Edit1: TEdit Left = 40 Top = 48 Width = 121 Height = 21 Enabled = False TabOrder = 2 Text = 'hello world testing 3 2 1' OnChange = Edit1Change end object btnGetFirstWord: TButton Left = 172 Top = 68 Width = 75 Height = 25 Caption = 'Get &first word' Enabled = False TabOrder = 3 OnClick = btnGetFirstWordClick end object btnGetNextWord: TButton Left = 172 Top = 96 Width = 75 Height = 25 Caption = 'Get &next word' Enabled = False TabOrder = 4 OnClick = btnGetNextWordClick end end